{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SupportContract", "description": "SupportContract schema from Pure1 Public REST API", "$id": "https://raw.githubusercontent.com/api-evangelist/pure-storage/refs/heads/main/json-schema/pure1-cloud-api-support-contract-schema.json", "type": "object", "properties": { "end_date": { "description": "Date when the support contract ended.\nRepresented as a timestamp of 00:00 on that date in UTC, in milliseconds since UNIX epoch.\n", "type": "integer", "format": "int64", "example": 1582502400000 }, "resource": { "allOf": [ { "$ref": "#/components/schemas/_fixedReference" }, { "type": "object", "properties": { "fqdn": { "description": "The fully qualified domain name of the appliance when `resource_type` is `arrays`,\n`null` otherwise.\n", "type": "string", "readOnly": true, "example": "example_name.dc1.example.com" } } } ] }, "start_date": { "description": "Date when the support contract started.\nRepresented as a timestamp of 00:00 on that date in UTC, in milliseconds since UNIX epoch.\n", "type": "integer", "format": "int64", "example": 1550966400000 } } }