Request to create an AT&T enterprise service order
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://devex-web.att.com/schemas/enterprise/product-order-request", "title": "Product Order Request", "description": "Request to create an AT&T enterprise service order", "type": "object", "required": [ "orderItem" ], "properties": { "externalId": { "type": "string" }, "description": { "type": "string" }, "requestedStartDate": { "type": "string", "format": "date" }, "orderItem": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "action": { "type": "string", "enum": [ "add", "modify", "delete", "noChange" ] }, "productOffering": { "type": "object", "properties": { "name": { "type": "string" } } } } } } } }