Scout RFP · Schema

EventCreateRequest

ProcurementSourcingRFPSupply ChainWorkday

Properties

Name Type Description
data object
View JSON Schema on GitHub

JSON Schema

scout-rfp-eventcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventCreateRequest",
  "title": "EventCreateRequest",
  "type": "object",
  "required": [
    "data"
  ],
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "example": "events"
        },
        "attributes": {
          "type": "object",
          "properties": {
            "title": {
              "type": "string"
            },
            "event_type": {
              "type": "string"
            },
            "external_id": {
              "type": "string"
            },
            "custom_fields": {
              "type": "array",
              "items": {
                "type": "object"
              }
            }
          }
        },
        "relationships": {
          "type": "object",
          "properties": {
            "event_template": {
              "type": "object"
            }
          }
        }
      }
    }
  }
}