Garden

Description

A garden is a distinguishable planned space, usually outdoors, set aside for the display, cultivation, and enjoyment of plants and other forms of nature.

Data Model

A JSON Schema corresponding to this data model can be found {{add link to JSON Schema}}

  • id : Unique identifier.

  • type : Entity type. It must be equal to Garden.

  • dateModified : Last update timestamp of this entity.

  • dateCreated : Entity's creation timestamp.

  • source : A sequence of characters giving the source of the entity data.

    • Attribute type: Text or URL
    • Optional
  • location : Location of this garden represented by a GeoJSON geometry.

  • address : Civic address of this garden.

  • name : Garden's name.

  • alternateName : Garden's alternate name.

  • description : Garden's description

    • Normative References: [https://schema.org/description]
    • Optional
  • category : Garden's category.

    • Attribute type: List of Text
    • Allowed Values: (public, private, botanical, castle, community, monastery, residential, fencedOff) or any other value needed by an application.
    • Optional
  • style : Garden's style.

  • openingHours : Opening hours of this garden.

    • Normative references: [https://schema.org/openingHours]
    • Optional
  • areaServed : Higher level area to which the garden belongs to. It can be used to group gardens per responsible, district, neighbourhood, etc.

    • Attribute type: Text Optional
  • dateLastWatering : Timestamp which corresponds to the last watering of this garden.

  • nextWateringDeadline : Deadline for next watering operation to be done on this garden.

  • refRecord : List of records which contain measurements related to this garden.

    • Attribute type: List of references to entities of type GreenspaceRecord
    • Optional

Examples of use

    {
        "id": "Santander-Garden-Piquio",
        "type": "Garden",
        "name": "Jardines de Piquio",
        "description": "Jardines de Piquio. Zona El Sardinero",
        "location": {
            "type": "Point",
            "coordinates": [-3.7836974, 43.4741091]
        },
        "address": {
            "streetAddress": "Avenida CastaƱeda",
            "addressLocality": "Santander",
            "postalCode": "39005"
        },
        "openingHours": "Mo-Su",
        "style": "french",
        "category": ["public"],
        "areaServed": "El Sardinero",
        "dateLastWatering": "2017-03-31T:08:00",
        "refRecord": ["Santander-Garden-Piquio-Record-1"]
    }

Use it with a real service

Soon to be available

Open Issues