{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Document", "title": "Document", "required": [ "id", "dataEntityId", "accountId", "accountName", "followers" ], "type": "object", "description": "Document information.", "properties": { "id": { "type": "string", "description": "ID of the document." }, "dataEntityId": { "type": "string", "description": "Data entity name." }, "accountId": { "type": "string", "description": "ID of the VTEX account." }, "accountName": { "type": "string", "description": "Name of the VTEX account." }, "followers": { "type": "array", "description": "Followers.", "deprecated": true, "items": { "type": "string", "description": "Follower." } }, "schemas": { "type": "array", "description": "Schemas which the document is compliant with.", "items": { "type": "string", "description": "Schema name." } }, "email": { "type": "string", "description": "User email." } } }