{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "OrganizationMetadataRequest", "required": [ "provider", "metadata" ], "properties": { "provider": { "description": "Metadata provider.", "type": "string", "enum": [ "user", "system", "maintainer" ] }, "metadata": { "description": "List of metadata entries.", "type": "array", "items": { "required": [ "key", "value" ], "properties": { "key": { "description": "Metadata key.", "type": "string" }, "value": { "description": "Metadata value.", "type": "string" } }, "type": "object" } } }, "type": "object" }