---
title: "Score"
url: "https://nexora.apim.eu/apis/access-requests/versions/85552175-ec5d-4510-b24d-c293a66d9945/schemas/Score"
---

> Full API specification: https://nexora.apim.eu/apis/access-requests/versions/85552175-ec5d-4510-b24d-c293a66d9945.md

# Score

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Access & Onboarding Requests
  version: 1.0.0
servers:
  - url: https://api.nexora.example/v1
    description: Production
  - url: https://sandbox.api.nexora.example/v1
    description: Sandbox
components:
  schemas:
    Criterion:
      type: object
      properties:
        criterion:
          type: string
          example: budget_fit
        met:
          type: boolean
          example: true
        weight:
          type: integer
          example: 30
    Score:
      type: object
      properties:
        request_id:
          type: string
          example: req_71ab
        agent_id:
          type: string
          example: agt_8f2c1a
        points:
          type: integer
          minimum: 0
          maximum: 100
          example: 82
        rating:
          type: string
          enum:
            - low
            - medium
            - high
        criteria:
          type: array
          items:
            $ref: "#/components/schemas/Criterion"
```
