Scout RFP · Schema

LineItem

ProcurementSourcingRFPSupply ChainWorkday

Properties

Name Type Description
id string
type string
attributes object
View JSON Schema on GitHub

JSON Schema

scout-rfp-lineitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LineItem",
  "title": "LineItem",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "attributes": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "quantity": {
          "type": "number"
        },
        "unit": {
          "type": "string"
        }
      }
    }
  }
}