Coder Social home page Coder Social logo

@types endpoint specs about plone.restapi HOT 5 CLOSED

plone avatar plone commented on June 19, 2024
@types endpoint specs

from plone.restapi.

Comments (5)

tisto avatar tisto commented on June 19, 2024

Just FYI: I already documented our discussion from the sprint here: #89

from plone.restapi.

esteele avatar esteele commented on June 19, 2024

I've been working on implementing this in https://github.com/pyrenees/plone.dexterity/tree/master/plone/dexterity/serialize. Things need to be reorganized a bit, but most of it's there.

{
  "@type": "Todo",
  "parent": {
    "@type": "Plone Site",
    "@id": "/plone",
    "title": "Demo Site",
    "description": "Awww yeah..."
  },
  "@id": "/plone/obj1",
  "schema": {
    "properties": {
      "invariants": [],
      "created": {
        "readonly": "False",
        "type": "zope.schema.Datetime",
        "description": "The date and time that an object is created. \nThis is normally set automatically.",
        "required": "True",
        "title": "Creation Date"
      },
      "fieldsets": {
        "other": {
          "properties": {
            "assigned_to": {
              "readonly": "False",
              "type": "zope.schema.TextLine",
              "description": "The person who needs to complete the task.",
              "min_length": "0",
              "title": "Assigned To",
              "default": "",
              "required": "False"
            },
            "notes": {
              "readonly": "False",
              "type": "zope.schema.Text",
              "description": "Classified notes on about task",
              "min_length": "0",
              "title": "Notes",
              "default": "",
              "required": "False"
            }
          },
          "label": "Additional Information"
        }
      },
      "schemas": {
        "IDublinCore": {
          "based_on": [],
          "invariants": "",
          "fields": [
            "created",
            "modified"
          ],
          "name": "IDublinCore"
        },
        "ITodo": {
          "based_on": [
            "plone.example.todo.IExampleBase"
          ],
          "invariants": "",
          "fields": [
            "done",
            "assigned_to",
            "notes"
          ],
          "name": "ITodo"
        }
      },
      "done": {
        "readonly": "False",
        "type": "zope.schema.Bool",
        "description": "Has the task been completed?",
        "title": "Done",
        "default": "False",
        "required": "False"
      },
      "modified": {
        "readonly": "False",
        "type": "zope.schema.Datetime",
        "description": "The date and time that the object was last modified in a\nmeaningful way.",
        "required": "True",
        "title": "Modification Date"
      }
    },
    "title": "Todo",
    "type": "object"
  },
  "created": null,
  "assigned_to": "",
  "done": false,
  "title": "It's a todo!",
  "modified": null,
  "UID": "355b0b3789ca445c9090f7fb1fde8cec"
}

from plone.restapi.

esteele avatar esteele commented on June 19, 2024

@ebrehault Can you elaborate on the placeholders/help messages items? Are these currently exposed in dexterity/zope.schema?

from plone.restapi.

ebrehault avatar ebrehault commented on June 19, 2024

@esteele The help message is basically the description attribute of our schema fields.
Placeholders are not managed in zope.schema nor dexterity. I guess we can skip it for now.

from plone.restapi.

fbessou avatar fbessou commented on June 19, 2024

Nested schemas are just custom properties of JSON Schemas which are available for referencing. But they are only seen as schemas if they are referenced. For example :

{
  "nested": {
    "type": "string",
    "minLength": 2
  },
  "properties": {
    "name": {"$ref":"#/nested"}
  }
}

I propose to use the following structure as it would not interfere with the way JSON Schema is intended to be used.

{
  "$schema": "http://json-schema.org/draft-04/hyper-schema#",
  "type": "object",
  "properties": {
    "username": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "creditCardNumber": {
      "type": "string",
      "pattern": "[0-9]{13,16}"
    }
  },
  "fieldsets": [{
    "id": "part_1",
    "title": "Registration",
    "fields": ["username", "email"]
  },
  {
    "id": "part_2",
    "title": "Payment",
    "fields": ["creditCardNumber"]   
  }],
  "required": ["username", "email", "creditCardNumber"],
  "links": [{
    "title": "Cancel",
    "description": "Cancel the transaction",
    "href": "test",
    "rel": "action"
  },
  {
    "title": "Cancel",
    "description": "Cancel the transaction",
    "href": "somewhere",
    "rel": "action"
  }]
}

Where fieldsets is a custom property which will not be processed by validators.

from plone.restapi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.