{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/catalog-metafield-schema.json", "title": "Metafield", "description": "Metafield", "type": "object", "properties": { "Key": { "description": "Key of the metafield.\r\nAllowed characters: lowercase letters, numbers, hyphen, underscore and dot", "type": "string", "example": "string" }, "Value": { "description": "Value of the metafield.", "type": "string", "example": "string" } }, "required": [ "Key", "Value" ] }