Webex · Schema

StateGet

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
code string Two-letter state or province abbreviation (e.g., CA for California).
name string Full name of the state or province.
View JSON Schema on GitHub

JSON Schema

webex-stateget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StateGet",
  "title": "StateGet",
  "type": "object",
  "required": [
    "code",
    "name"
  ],
  "properties": {
    "code": {
      "type": "string",
      "example": "CA",
      "description": "Two-letter state or province abbreviation (e.g., CA for California)."
    },
    "name": {
      "type": "string",
      "example": "California",
      "description": "Full name of the state or province."
    }
  }
}