···11+{
22+ "lexicon": 1,
33+ "id": "community.lexicon.location.address",
44+ "defs": {
55+ "main": {
66+ "type": "object",
77+ "description": "A physical location in the form of a street address.",
88+ "required": ["country"],
99+ "properties": {
1010+ "country": {
1111+ "type": "string",
1212+ "description": "The ISO 3166 country code. Preferably the 2-letter code.",
1313+ "minLength": 2,
1414+ "maxLength": 10
1515+ },
1616+ "postalCode": {
1717+ "type": "string",
1818+ "description": "The postal code of the location."
1919+ },
2020+ "region": {
2121+ "type": "string",
2222+ "description": "The administrative region of the country. For example, a state in the USA."
2323+ },
2424+ "locality": {
2525+ "type": "string",
2626+ "description": "The locality of the region. For example, a city in the USA."
2727+ },
2828+ "street": {
2929+ "type": "string",
3030+ "description": "The street address."
3131+ },
3232+ "name": {
3333+ "type": "string",
3434+ "description": "The name of the location."
3535+ }
3636+ }
3737+ }
3838+ }
3939+}
+27
lexdocs/lexcom/location/fsq.json
···11+{
22+ "lexicon": 1,
33+ "id": "community.lexicon.location.fsq",
44+ "defs": {
55+ "main": {
66+ "type": "object",
77+ "description": "A physical location contained in the Foursquare Open Source Places dataset.",
88+ "required": ["fsq_place_id"],
99+ "properties": {
1010+ "fsq_place_id": {
1111+ "type": "string",
1212+ "description": "The unique identifier of a Foursquare POI."
1313+ },
1414+ "latitude": {
1515+ "type": "string"
1616+ },
1717+ "longitude": {
1818+ "type": "string"
1919+ },
2020+ "name": {
2121+ "type": "string",
2222+ "description": "The name of the location."
2323+ }
2424+ }
2525+ }
2626+ }
2727+}
+26
lexdocs/lexcom/location/geo.json
···11+{
22+ "lexicon": 1,
33+ "id": "community.lexicon.location.geo",
44+ "defs": {
55+ "main": {
66+ "type": "object",
77+ "description": "A physical location in the form of a WGS84 coordinate.",
88+ "required": ["latitude", "longitude"],
99+ "properties": {
1010+ "latitude": {
1111+ "type": "string"
1212+ },
1313+ "longitude": {
1414+ "type": "string"
1515+ },
1616+ "altitude": {
1717+ "type": "string"
1818+ },
1919+ "name": {
2020+ "type": "string",
2121+ "description": "The name of the location."
2222+ }
2323+ }
2424+ }
2525+ }
2626+}
+21
lexdocs/lexcom/location/hthree.json
···11+{
22+ "lexicon": 1,
33+ "id": "community.lexicon.location.hthree",
44+ "defs": {
55+ "main": {
66+ "type": "object",
77+ "description": "A physical location in the form of a H3 encoded location.",
88+ "required": ["value"],
99+ "properties": {
1010+ "value": {
1111+ "type": "string",
1212+ "description": "The h3 encoded location."
1313+ },
1414+ "name": {
1515+ "type": "string",
1616+ "description": "The name of the location."
1717+ }
1818+ }
1919+ }
2020+ }
2121+}
···11+export * as CommunityLexiconBookmarksBookmark from './types/community/lexicon/bookmarks/bookmark.js';
22+export * as CommunityLexiconBookmarksGetActorBookmarks from './types/community/lexicon/bookmarks/getActorBookmarks.js';
33+export * as CommunityLexiconCalendarEvent from './types/community/lexicon/calendar/event.js';
44+export * as CommunityLexiconCalendarRsvp from './types/community/lexicon/calendar/rsvp.js';
55+export * as CommunityLexiconInteractionLike from './types/community/lexicon/interaction/like.js';
66+export * as CommunityLexiconLocationAddress from './types/community/lexicon/location/address.js';
77+export * as CommunityLexiconLocationFsq from './types/community/lexicon/location/fsq.js';
88+export * as CommunityLexiconLocationGeo from './types/community/lexicon/location/geo.js';
99+export * as CommunityLexiconLocationHthree from './types/community/lexicon/location/hthree.js';