{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CapabilityDefinition", "title": "Capability Definition", "type": "object", "description": "Link and categorization of a machine-readable capability definition", "required": [ "type", "mediaType", "url" ], "properties": { "type": { "type": "string", "enum": [ "sap.mdo:mdi-capability-definition:v1", "custom" ] }, "customType": { "$ref": "#/components/schemas/SpecificationId" }, "mediaType": { "type": "string", "enum": [ "application/json", "application/xml", "text/yaml", "text/plain", "application/octet-stream" ] }, "url": { "type": "string", "format": "uri-reference" }, "accessStrategies": { "type": "array", "minItems": 1, "items": { "$ref": "#/components/schemas/AccessStrategy" } } } }