{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/application_property", "title": "Application Property", "additionalProperties": true, "type": "object", "description": "An application property. It is a caller defined JSON object that Bitbucket will store and return. \nThe `_attributes` field at its top level can be used to control who is allowed to read and update the property. \nThe keys of the JSON object must match an allowed pattern. For details, \nsee [Application properties](/cloud/bitbucket/application-properties/).\n", "properties": { "_attributes": { "type": "array", "items": { "type": "string", "enum": [ "public", "read_only" ] }, "example": [] } } }