{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/attribute_Post", "title": "attribute_Post", "example": { "name": "attribute_string 01", "type": "string" }, "type": "object", "properties": { "name": { "description": "Attribute name.", "type": "string", "minLength": 1, "maxLength": 255 }, "type": { "title": "Type", "description": "Attribute type should match one of: string, number, date.", "example": "string", "type": "string", "enum": [ "string", "number", "date" ] } }, "required": [ "name", "type" ], "x-internal": false }