guide.climbers.dev.poi

gunnar.foo

Documentation

Point of interest information for a climbing venue.

main object

Point of interest information for a climbing venue.

Properties

attribution string Optional

No description available.

openingHours ref #openingHours Optional

No description available.

phone string Optional

No description available.

website string uri Optional

A valid URI.

View raw schema
{
  "type": "object",
  "properties": {
    "phone": {
      "type": "string"
    },
    "address": {
      "ref": "community.lexicon.location.address",
      "type": "ref"
    },
    "website": {
      "type": "string",
      "format": "uri"
    },
    "attribution": {
      "type": "string"
    },
    "coordinates": {
      "ref": "community.lexicon.location.geo",
      "type": "ref"
    },
    "openingHours": {
      "ref": "#openingHours",
      "type": "ref"
    }
  },
  "description": "Point of interest information for a climbing venue."
}
openingHours object

Regular weekly opening hours. Absent days are closed. Each day may have multiple ranges to represent a mid-day break.

Properties

friday array of ref#openingRange Optional

No description available.

monday array of ref#openingRange Optional

No description available.

saturday array of ref#openingRange Optional

No description available.

sunday array of ref#openingRange Optional

No description available.

thursday array of ref#openingRange Optional

No description available.

tuesday array of ref#openingRange Optional

No description available.

wednesday array of ref#openingRange Optional

No description available.

View raw schema
{
  "type": "object",
  "properties": {
    "friday": {
      "type": "array",
      "items": {
        "ref": "#openingRange",
        "type": "ref"
      }
    },
    "monday": {
      "type": "array",
      "items": {
        "ref": "#openingRange",
        "type": "ref"
      }
    },
    "sunday": {
      "type": "array",
      "items": {
        "ref": "#openingRange",
        "type": "ref"
      }
    },
    "tuesday": {
      "type": "array",
      "items": {
        "ref": "#openingRange",
        "type": "ref"
      }
    },
    "saturday": {
      "type": "array",
      "items": {
        "ref": "#openingRange",
        "type": "ref"
      }
    },
    "thursday": {
      "type": "array",
      "items": {
        "ref": "#openingRange",
        "type": "ref"
      }
    },
    "wednesday": {
      "type": "array",
      "items": {
        "ref": "#openingRange",
        "type": "ref"
      }
    }
  },
  "description": "Regular weekly opening hours. Absent days are closed. Each day may have multiple ranges to represent a mid-day break."
}
openingRange object

A contiguous opening period within a single day.

Properties

end ref #time Required

No description available.

start ref #time Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "start",
    "end"
  ],
  "properties": {
    "end": {
      "ref": "#time",
      "type": "ref"
    },
    "start": {
      "ref": "#time",
      "type": "ref"
    }
  },
  "description": "A contiguous opening period within a single day."
}
time object

A time of day. hour is 0–24, where 24 represents end of day (midnight).

Properties

hour integer Required

No description available.

minimum: 0maximum: 24
minute integer Optional

No description available.

minimum: 0maximum: 59
View raw schema
{
  "type": "object",
  "required": [
    "hour"
  ],
  "properties": {
    "hour": {
      "type": "integer",
      "maximum": 24,
      "minimum": 0
    },
    "minute": {
      "type": "integer",
      "maximum": 59,
      "minimum": 0
    }
  },
  "description": "A time of day. hour is 0–24, where 24 represents end of day (midnight)."
}

Lexicon Garden

@