{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Project", "type": "object", "properties": { "id": { "type": "string", "description": "The unique identifier of the project." }, "name": { "type": "string", "description": "The name of the project." }, "subdomain": { "type": "string", "description": "The subdomain for the project." }, "domains": { "type": "array", "description": "Custom domains attached to the project." }, "production_branch": { "type": "string", "description": "The production branch name." }, "created_on": { "type": "string", "description": "When the project was created." }, "build_config": { "type": "object" } } }